@import url("https://fonts.googleapis.com/css?family=Overpass:400,700");
body, html {
  height: 100%;
}

body {
  margin: 0;
  font-family: Overpass, sans-serif;
}

body .bg {
  height: 100%;
  width: 100%;
  -webkit-clip-path: polygon(100% 0, 100% 67%, 64% 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0, 100% 67%, 64% 100%, 0 100%, 0 0);
  background-color: #005dff;
  position: absolute;
  z-index: -1;
}

@media (min-width: 840px) {
  body .bg {
    -webkit-clip-path: polygon(0 0, 74% 0, 50% 100%, 0 100%);
            clip-path: polygon(0 0, 74% 0, 50% 100%, 0 100%);
  }
}

@media (min-width: 840px) {
  body header {
    width: 25%;
  }
}

body header a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  padding: 15px;
  font-size: 1.2rem;
}

body header a:hover {
  color: black;
}

@media (min-width: 840px) {
  main {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "primary card";
  }
}

main section#card {
  background: white;
  padding: 20px;
  margin: 1em auto;
  width: 80%;
  border-radius: 15px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (min-width: 840px) {
  main section#card {
    grid-area: card;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    margin: 1em;
  }
}

main section#card ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

main section#card ul li {
  margin-bottom: 10px;
}

main section#card ul li span {
  position: absolute;
  height: 25px;
  width: 25px;
  background-color: #99beff;
  border-radius: 50%;
}

main section#card ul li strong {
  display: inline-block;
  margin-left: 40px;
}

main section#primary {
  color: white;
  text-align: center;
}

@media (min-width: 840px) {
  main section#primary {
    grid-area: primary;
    text-align: left;
    margin: 4em 0 0 4em;
  }
}

main section#primary h1 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

main section#primary p {
  margin-bottom: 40px;
}

main section#primary a {
  text-decoration: none;
  color: #002566;
  font-weight: bold;
  font-size: 1.2rem;
  background: #fff6bb;
  text-transform: uppercase;
  padding: 15px;
  border-radius: 15px;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}

main section#primary a:hover {
  color: #a33434;
}
/*# sourceMappingURL=main.css.map */